home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / programmer / 4803 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  1.4 KB

  1. Path: ifi.uio.no!usenet
  2. From: ludvigp@ifi.uio.no (Ludvig Pedersen)
  3. Newsgroups: comp.sys.amiga.programmer
  4. Subject: CHIP RAM speed test results
  5. Date: 5 Mar 1996 13:50:25 GMT
  6. Organization: Dept. of Informatics, University of Oslo, Norway
  7. Message-ID: <938.6638T866T849@ifi.uio.no>
  8. References: <1067.6635T1081T1567@direktor.voima.jkl.fi> <352.6635T777T442@horus.co.jyu.fi>
  9.     <734.6636T1248T1351@direktor.voima.jkl.fi> <38232801@kone.fipnet.fi>
  10. NNTP-Posting-Host: gymir.ifi.uio.no
  11. X-Newsreader: THOR 2.22 (Amiga;TCP/IP)
  12.  
  13.  
  14. There was some people here said that the Blizzard1230-IV/50mhz was able to
  15. copy 7 mb/s from FastRsm to ChipRam.
  16.  
  17. Well, as my Blizzard1230-II/50mhz was only able to copy 4.9 mb/s I was
  18. supsious about this.
  19.  
  20. So now I have performed a speed-test on a Blizzard1230-IV/50mhz.
  21.  
  22. And the result is:
  23.  
  24. There is NO-WAY that card can copy 7 mb/s to ChipRam.
  25.  
  26. I was only able to copy 4.6-4.7 mb/s with no bitplane DMA.
  27.  
  28.  
  29. Btw:
  30.  
  31. I was able to copy 6.8 mb/s from Fast to Chip with this loop:
  32.  
  33. .loop:
  34.         REPT 8
  35.         move.l (a0),(a1)
  36.         ENDR
  37.         dbra d7,.loop
  38.  
  39. I suppose this is the why people have said they can copy 7 mb/s!
  40.  
  41. This loop doesnt work because of DATACACHE. As the loop reads from the same
  42. place in FastRam every time. The CPU uses its internal datacache instead of
  43. accessing the memory bus to fetch the longword from FastRam.
  44.  
  45.  
  46. <sb>Ludde - Amiga Demo Coder
  47. <sb>Virtual Reality & Official Be developer
  48. <sb>ludvigp@ifi.uio.no
  49.  
  50.